From 456f12eacd7250b4c075f034182d0c09cfddbc77 Mon Sep 17 00:00:00 2001 From: Debian Science Maintainers Date: Sat, 4 Feb 2023 14:01:18 +0100 Subject: [PATCH] Fix FTBFS on armhf/armel, undefined GL_PROJECTION MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Bug-Debian: https://bugs.debian.org/1014875 Forwarded: no Last-Update: 2022-08-08 This define is defined in GL/gl.h, so there must be some missing include somewhere. This patch just adds the include… Last-Update: 2022-08-08 Gbp-Pq: Name fix-1014875-arm-FTBFS.patch --- src/Gui/Quarter/QuarterWidget.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Gui/Quarter/QuarterWidget.cpp b/src/Gui/Quarter/QuarterWidget.cpp index 5e1f89e0..24aa5a0b 100644 --- a/src/Gui/Quarter/QuarterWidget.cpp +++ b/src/Gui/Quarter/QuarterWidget.cpp @@ -54,6 +54,11 @@ #include +#include "config.h" +#ifdef HAVE_GL_GL_H +#include +#endif + #include #include #include -- 2.30.2